home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / chat / ircii-2.8he / ircii-2 / help / KILL < prev    next >
Encoding:
Text File  |  1993-05-04  |  1.4 KB  |  35 lines

  1. Usage: KILL <nickname> <comment>
  2.   Removes a person from irc.  This is an operator command
  3.   and should be used with extreme caution (if at all). The
  4.   comment is necessary to let others the reason for the kill.
  5.   If you don't give a comment, you will probably be bombarded
  6.   with messages saying "why the kill?"
  7.  
  8.   Regarding so called 'ghosts'.  These are generated typically when
  9.   someone accidently does a shell escape out of irc, (see BIND STOP_IRC)
  10.   and they start a new process.  They think the old one is a 'ghost'.
  11.   The way to get rid of these ghosts is to QUIT the current session
  12.   and type 'ps -gx' or 'ps -f' at the unix command prompt.
  13.   This will generate a listing looking something like.
  14.     unix> ps -gx
  15.       PID TT STAT   TIME COMMAND
  16.     15472 p8 S      1:20 irc Daemon
  17.   Where all the user has to do now is type 
  18.     unix> kill -9 15472
  19.   and the problem is fixed.  This is preferable to the IRC KILL command
  20.   which is not 100% effective. kill -9 is.
  21.  
  22.   If you cannot manage to get the above to work, try typing at the unix
  23.   command prompt:
  24.     kill -9 -1
  25.   This will often kill all your processes, then you only have to log in again.
  26.  
  27.   With the advent of auto-reconnecting clients KILL is almost
  28.   totally worthless as a tool for punishment.   More effective
  29.   methods to deal with obnoxious people are the IGNORE, KICK
  30.   and various MODE's on channels, such as +i and +b.
  31.  
  32. See Also:
  33.   MODE
  34.   IGNORE
  35.